home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / flex251s / skel.c < prev    next >
C/C++ Source or Header  |  1995-03-20  |  40KB  |  1,501 lines

  1. /* File created from flex.skl via mkskel.sh */
  2.  
  3. #include "flexdef.h"
  4.  
  5. const char *skel[] = {
  6.   "/* A lexical scanner generated by flex */",
  7.   "",
  8.   "/* Scanner skeleton version:",
  9.   " * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.81 95/03/20 14:02:24 vern Exp $",
  10.   " */",
  11.   "",
  12.   "#define FLEX_SCANNER",
  13.   "#define YY_FLEX_MAJOR_VERSION 2",
  14.   "#define YY_FLEX_MINOR_VERSION 5",
  15.   "",
  16.   "%-",
  17.   "#include <stdio.h>",
  18.   "%*",
  19.   "",
  20.   "",
  21.   "/* cfront 1.2 defines \"c_plusplus\" instead of \"__cplusplus\" */",
  22.   "#ifdef c_plusplus",
  23.   "#ifndef __cplusplus",
  24.   "#define __cplusplus",
  25.   "#endif",
  26.   "#endif",
  27.   "",
  28.   "",
  29.   "#ifdef __cplusplus",
  30.   "",
  31.   "#include <stdlib.h>",
  32.   "%+",
  33.   "class istream;",
  34.   "%*",
  35.   "#include <unistd.h>",
  36.   "",
  37.   "/* Use prototypes in function declarations. */",
  38.   "#define YY_USE_PROTOS",
  39.   "",
  40.   "/* The \"const\" storage-class-modifier is valid. */",
  41.   "#define YY_USE_CONST",
  42.   "",
  43.   "#else    /* ! __cplusplus */",
  44.   "",
  45.   "#if __STDC__",
  46.   "",
  47.   "#define YY_USE_PROTOS",
  48.   "#define YY_USE_CONST",
  49.   "",
  50.   "#endif    /* __STDC__ */",
  51.   "#endif    /* ! __cplusplus */",
  52.   "",
  53.   "#ifdef __TURBOC__",
  54.   " #pragma warn -rch",
  55.   " #pragma warn -use",
  56.   "#include <io.h>",
  57.   "#include <stdlib.h>",
  58.   "#define YY_USE_CONST",
  59.   "#define YY_USE_PROTOS",
  60.   "#endif",
  61.   "",
  62.   "#ifndef YY_USE_CONST",
  63.   "#ifndef const",
  64.   "#define const",
  65.   "#endif",
  66.   "#endif",
  67.   "",
  68.   "",
  69.   "#ifdef YY_USE_PROTOS",
  70.   "#define YY_PROTO(proto) proto",
  71.   "#else",
  72.   "#define YY_PROTO(proto) ()",
  73.   "#endif",
  74.   "",
  75.   "/* Returned upon end-of-file. */",
  76.   "#define YY_NULL 0",
  77.   "",
  78.   "/* Promotes a possibly negative, possibly signed char to an unsigned",
  79.   " * integer for use as an array index.  If the signed char is negative,",
  80.   " * we want to instead treat it as an 8-bit unsigned char, hence the",
  81.   " * double cast.",
  82.   " */",
  83.   "#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)",
  84.   "",
  85.   "/* Enter a start condition.  This macro really ought to take a parameter,",
  86.   " * but we do it the disgusting crufty way forced on us by the ()-less",
  87.   " * definition of BEGIN.",
  88.   " */",
  89.   "#define BEGIN yy_start = 1 + 2 *",
  90.   "",
  91.   "/* Translate the current start state into a value that can be later handed",
  92.   " * to BEGIN to return to the state.  The YYSTATE alias is for lex",
  93.   " * compatibility.",
  94.   " */",
  95.   "#define YY_START ((yy_start - 1) / 2)",
  96.   "#define YYSTATE YY_START",
  97.   "",
  98.   "/* Action number for EOF rule of a given start state. */",
  99.   "#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)",
  100.   "",
  101.   "/* Special action meaning \"start processing a new file\". */",
  102.   "#define YY_NEW_FILE yyrestart( yyin )",
  103.   "",
  104.   "#define YY_END_OF_BUFFER_CHAR 0",
  105.   "",
  106.   "/* Size of default input buffer. */",
  107.   "#define YY_BUF_SIZE 16384",
  108.   "",
  109.   "typedef struct yy_buffer_state *YY_BUFFER_STATE;",
  110.   "",
  111.   "extern int yyleng;",
  112.   "%-",
  113.   "extern FILE *yyin, *yyout;",
  114.   "%*",
  115.   "",
  116.   "#define EOB_ACT_CONTINUE_SCAN 0",
  117.   "#define EOB_ACT_END_OF_FILE 1",
  118.   "#define EOB_ACT_LAST_MATCH 2",
  119.   "",
  120.   "/* The funky do-while in the following #define is used to turn the definition",
  121.   " * int a single C statement (which needs a semi-colon terminator).  This",
  122.   " * avoids problems with code like:",
  123.   " *",
  124.   " *     if ( condition_holds )",
  125.   " *        yyless( 5 );",
  126.   " *    else",
  127.   " *        do_something_else();",
  128.   " *",
  129.   " * Prior to using the do-while the compiler would get upset at the",
  130.   " * \"else\" because it interpreted the \"if\" statement as being all",
  131.   " * done when it reached the ';' after the yyless() call.",
  132.   " */",
  133.   "",
  134.   "/* Return all but the first 'n' matched characters back to the input stream. */",
  135.   "",
  136.   "#define yyless(n) \\",
  137.   "    do \\",
  138.   "        { \\",
  139.   "        /* Undo effects of setting up yytext. */ \\",
  140.   "        *yy_cp = yy_hold_char; \\",
  141.   "        yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \\",
  142.   "        YY_DO_BEFORE_ACTION; /* set up yytext again */ \\",
  143.   "        } \\",
  144.   "    while ( 0 )",
  145.   "",
  146.   "#define unput(c) yyunput( c, yytext_ptr )",
  147.   "",
  148.   "/* The following is because we cannot portably get our hands on size_t",
  149.   " * (without autoconf's help, which isn't available because we want",
  150.   " * flex-generated scanners to compile on their own).",
  151.   " */",
  152.   "typedef unsigned int yy_size_t;",
  153.   "",
  154.   "",
  155.   "struct yy_buffer_state",
  156.   "    {",
  157.   "%-",
  158.   "    FILE *yy_input_file;",
  159.   "%+",
  160.   "    istream* yy_input_file;",
  161.   "%*",
  162.   "",
  163.   "    char *yy_ch_buf;        /* input buffer */",
  164.   "    char *yy_buf_pos;        /* current position in input buffer */",
  165.   "",
  166.   "    /* Size of input buffer in bytes, not including room for EOB",
  167.   "     * characters.",
  168.   "     */",
  169.   "    yy_size_t yy_buf_size;",
  170.   "",
  171.   "    /* Number of characters read into yy_ch_buf, not including EOB",
  172.   "     * characters.",
  173.   "     */",
  174.   "    int yy_n_chars;",
  175.   "",
  176.   "    /* Whether we \"own\" the buffer - i.e., we know we created it,",
  177.   "     * and can realloc() it to grow it, and should free() it to",
  178.   "     * delete it.",
  179.   "     */",
  180.   "    int yy_is_our_buffer;",
  181.   "",
  182.   "    /* Whether this is an \"interactive\" input source; if so, and",
  183.   "     * if we're using stdio for input, then we want to use getc()",
  184.   "     * instead of fread(), to make sure we stop fetching input after",
  185.   "     * each newline.",
  186.   "     */",
  187.   "    int yy_is_interactive;",
  188.   "",
  189.   "    /* Whether we're considered to be at the beginning of a line.",
  190.   "     * If so, '^' rules will be active on the next match, otherwise",
  191.   "     * not.",
  192.   "     */",
  193.   "    int yy_at_bol;",
  194.   "",
  195.   "    /* Whether to try to fill the input buffer when we reach the",
  196.   "     * end of it.",
  197.   "     */",
  198.   "    int yy_fill_buffer;",
  199.   "",
  200.   "    int yy_buffer_status;",
  201.   "#define YY_BUFFER_NEW 0",
  202.   "#define YY_BUFFER_NORMAL 1",
  203.   "    /* When an EOF's been seen but there's still some text to process",
  204.   "     * then we mark the buffer as YY_EOF_PENDING, to indicate that we",
  205.   "     * shouldn't try reading from the input source any more.  We might",
  206.   "     * still have a bunch of tokens to match, though, because of",
  207.   "     * possible backing-up.",
  208.   "     *",
  209.   "     * When we actually see the EOF, we change the status to \"new\"",
  210.   "     * (via yyrestart()), so that the user can continue scanning by",
  211.   "     * just pointing yyin at a new input file.",
  212.   "     */",
  213.   "#define YY_BUFFER_EOF_PENDING 2",
  214.   "    };",
  215.   "",
  216.   "%- Standard (non-C++) definition",
  217.   "static YY_BUFFER_STATE yy_current_buffer = 0;",
  218.   "%*",
  219.   "",
  220.   "/* We provide macros for accessing buffer states in case in the",
  221.   " * future we want to put the buffer states in a more general",
  222.   " * \"scanner state\".",
  223.   " */",
  224.   "#define YY_CURRENT_BUFFER yy_current_buffer",
  225.   "",
  226.   "",
  227.   "%- Standard (non-C++) definition",
  228.   "/* yy_hold_char holds the character lost when yytext is formed. */",
  229.   "static char yy_hold_char;",
  230.   "",
  231.   "static int yy_n_chars;        /* number of characters read into yy_ch_buf */",
  232.   "",
  233.   "",
  234.   "int yyleng;",
  235.   "",
  236.   "/* Points to current character in buffer. */",
  237.   "static char *yy_c_buf_p = (char *) 0;",
  238.   "static int yy_init = 1;        /* whether we need to initialize */",
  239.   "static int yy_start = 0;    /* start state number */",
  240.   "",
  241.   "/* Flag which is used to allow yywrap()'s to do buffer switches",
  242.   " * instead of setting up a fresh yyin.  A bit of a hack ...",
  243.   " */",
  244.   "static int yy_did_buffer_switch_on_eof;",
  245.   "",
  246.   "void yyrestart YY_PROTO(( FILE *input_file ));",
  247.   "",
  248.   "void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));",
  249.   "void yy_load_buffer_state YY_PROTO(( void ));",
  250.   "YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));",
  251.   "void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));",
  252.   "void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));",
  253.   "void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));",
  254.   "#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )",
  255.   "",
  256.   "YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));",
  257.   "YY_BUFFER_STATE yy_scan_string YY_PROTO(( const char *str ));",
  258.   "YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( const char *bytes, int len ));",
  259.   "%*",
  260.   "",
  261.   "static void *yy_flex_alloc YY_PROTO(( yy_size_t ));",
  262.   "static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));",
  263.   "static void yy_flex_free YY_PROTO(( void * ));",
  264.   "",
  265.   "#define yy_new_buffer yy_create_buffer",
  266.   "",
  267.   "#define yy_set_interactive(is_interactive) \\",
  268.   "    { \\",
  269.   "    if ( ! yy_current_buffer ) \\",
  270.   "        yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \\",
  271.   "    yy_current_buffer->yy_is_interactive = is_interactive; \\",
  272.   "    }",
  273.   "",
  274.   "#define yy_set_bol(at_bol) \\",
  275.   "    { \\",
  276.   "    if ( ! yy_current_buffer ) \\",
  277.   "        yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \\",
  278.   "    yy_current_buffer->yy_at_bol = at_bol; \\",
  279.   "    }",
  280.   "",
  281.   "#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)",
  282.   "",
  283.   "%% yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here",
  284.   "",
  285.   "#ifndef YY_SKIP_YYWRAP",
  286.   "#ifdef __cplusplus",
  287.   "extern \"C\" int yywrap YY_PROTO(( void ));",
  288.   "#else",
  289.   "extern int yywrap YY_PROTO(( void ));",
  290.   "#endif",
  291.   "#endif",
  292.   "",
  293.   "#ifndef YY_NO_UNPUT",
  294.   "static void yyunput YY_PROTO(( int c, char *buf_ptr ));",
  295.   "#endif",
  296.   "",
  297.   "#ifndef yytext_ptr",
  298.   "static void yy_flex_strncpy YY_PROTO(( char *, const char *, int ));",
  299.   "#endif",
  300.   "",
  301.   "#ifndef YY_NO_INPUT",
  302.   "%- Standard (non-C++) definition",
  303.   "#ifdef __cplusplus",
  304.   "static int yyinput YY_PROTO(( void ));",
  305.   "#else",
  306.   "static int input YY_PROTO(( void ));",
  307.   "#endif",
  308.   "%*",
  309.   "#endif",
  310.   "",
  311.   "%- Standard (non-C++) definition",
  312.   "static yy_state_type yy_get_previous_state YY_PROTO(( void ));",
  313.   "static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));",
  314.   "static int yy_get_next_buffer YY_PROTO(( void ));",
  315.   "static void yy_fatal_error YY_PROTO(( const char msg[] ));",
  316.   "%*",
  317.   "",
  318.   "/* Done after the current pattern has been matched and before the",
  319.   " * corresponding action - sets up yytext.",
  320.   " */",
  321.   "#define YY_DO_BEFORE_ACTION \\",
  322.   "    yytext_ptr = yy_bp; \\",
  323.   "%% code to fiddle yytext and yyleng for yymore() goes here",
  324.   "    yy_hold_char = *yy_cp; \\",
  325.   "    *yy_cp = '\\0'; \\",
  326.   "%% code to copy yytext_ptr to yytext[] goes here, if %array",
  327.   "    yy_c_buf_p = yy_cp;",
  328.   "",
  329.   "%% data tables for the DFA and the user's section 1 definitions go here",
  330.   "",
  331.   "/* Macros after this point can all be overridden by user definitions in",
  332.   " * section 1.",
  333.   " */",
  334.   "",
  335.   "#if YY_STACK_USED",
  336.   "static int yy_start_stack_ptr = 0;",
  337.   "static int yy_start_stack_depth = 0;",
  338.   "static int *yy_start_stack = 0;",
  339.   "#ifndef YY_NO_PUSH_STATE",
  340.   "static void yy_push_state YY_PROTO(( int new_state ));",
  341.   "#endif",
  342.   "#ifndef YY_NO_POP_STATE",
  343.   "static void yy_pop_state YY_PROTO(( void ));",
  344.   "#endif",
  345.   "#ifndef YY_NO_TOP_STATE",
  346.   "static int yy_top_state YY_PROTO(( void ));",
  347.   "#endif",
  348.   "",
  349.   "#else",
  350.   "#define YY_NO_PUSH_STATE 1",
  351.   "#define YY_NO_POP_STATE 1",
  352.   "#define YY_NO_TOP_STATE 1",
  353.   "#endif",
  354.   "",
  355.   "#ifdef YY_MALLOC_DECL",
  356.   "YY_MALLOC_DECL",
  357.   "#else",
  358.   "#if __STDC__",
  359.   "#ifndef __cplusplus",
  360.   "#include <stdlib.h>",
  361.   "#endif",
  362.   "#else",
  363.   "/* Just try to get by without declaring the routines.  This will fail",
  364.   " * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)",
  365.   " * or sizeof(void*) != sizeof(int).",
  366.   " */",
  367.   "#endif",
  368.   "#endif",
  369.   "",
  370.   "/* Amount of stuff to slurp up with each read. */",
  371.   "#ifndef YY_READ_BUF_SIZE",
  372.   "#define YY_READ_BUF_SIZE 8192",
  373.   "#endif",
  374.   "",
  375.   "/* Copy whatever the last rule matched to the standard output. */",
  376.   "",
  377.   "#ifndef ECHO",
  378.   "%- Standard (non-C++) definition",
  379.   "/* This used to be an fputs(), but since the string might contain NUL's,",
  380.   " * we now use fwrite().",
  381.   " */",
  382.   "#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )",
  383.   "%+ C++ definition",
  384.   "#define ECHO LexerOutput( yytext, yyleng )",
  385.   "%*",
  386.   "#endif",
  387.   "",
  388.   "/* Gets input and stuffs it into \"buf\".  number of characters read, or YY_NULL,",
  389.   " * is returned in \"result\".",
  390.   " */",
  391.   "#ifndef YY_INPUT",
  392.   "#define YY_INPUT(buf,result,max_size) \\",
  393.   "%% fread()/read() definition of YY_INPUT goes here unless we're doing C++",
  394.   "%+ C++ definition",
  395.   "    if ( (result = LexerInput( (char *) buf, max_size )) < 0 ) \\",
  396.   "        YY_FATAL_ERROR( \"input in flex scanner failed\" );",
  397.   "%*",
  398.   "#endif",
  399.   "",
  400.   "/* No semi-colon after return; correct usage is to write \"yyterminate();\" -",
  401.   " * we don't want an extra ';' after the \"return\" because that will cause",
  402.   " * some compilers to complain about unreachable statements.",
  403.   " */",
  404.   "#ifndef yyterminate",
  405.   "#define yyterminate() return YY_NULL",
  406.   "#endif",
  407.   "",
  408.   "/* Number of entries by which start-condition stack grows. */",
  409.   "#ifndef YY_START_STACK_INCR",
  410.   "#define YY_START_STACK_INCR 25",
  411.   "#endif",
  412.   "",
  413.   "/* Report a fatal error. */",
  414.   "#ifndef YY_FATAL_ERROR",
  415.   "%-",
  416.   "#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )",
  417.   "%+",
  418.   "#define YY_FATAL_ERROR(msg) LexerError( msg )",
  419.   "%*",
  420.   "#endif",
  421.   "",
  422.   "/* Default declaration of generated scanner - a define so the user can",
  423.   " * easily add parameters.",
  424.   " */",
  425.   "#ifndef YY_DECL",
  426.   "%- Standard (non-C++) definition",
  427.   "#define YY_DECL int yylex YY_PROTO(( void ))",
  428.   "%+ C++ definition",
  429.   "#define YY_DECL int yyFlexLexer::yylex()",
  430.   "%*",
  431.   "#endif",
  432.   "",
  433.   "/* Code executed at the beginning of each rule, after yytext and yyleng",
  434.   " * have been set up.",
  435.   " */",
  436.   "#ifndef YY_USER_ACTION",
  437.   "#define YY_USER_ACTION",
  438.   "#endif",
  439.   "",
  440.   "/* Code executed at the end of each rule. */",
  441.   "#ifndef YY_BREAK",
  442.   "#define YY_BREAK break;",
  443.   "#endif",
  444.   "",
  445.   "%% YY_RULE_SETUP definition goes here",
  446.   "",
  447.   "YY_DECL",
  448.   "    {",
  449.   "    register yy_state_type yy_current_state;",
  450.   "    register char *yy_cp, *yy_bp;",
  451.   "    register int yy_act;",
  452.   "",
  453.   "%% user's declarations go here",
  454.   "",
  455.   "    if ( yy_init )",
  456.   "        {",
  457.   "        yy_init = 0;",
  458.   "",
  459.   "#ifdef YY_USER_INIT",
  460.   "        YY_USER_INIT;",
  461.   "#endif",
  462.   "",
  463.   "        if ( ! yy_start )",
  464.   "            yy_start = 1;    /* first start state */",
  465.   "",
  466.   "        if ( ! yyin )",
  467.   "%-",
  468.   "            yyin = stdin;",
  469.   "%+",
  470.   "            yyin = &cin;",
  471.   "%*",
  472.   "",
  473.   "        if ( ! yyout )",
  474.   "%-",
  475.   "            yyout = stdout;",
  476.   "%+",
  477.   "            yyout = &cout;",
  478.   "%*",
  479.   "",
  480.   "        if ( ! yy_current_buffer )",
  481.   "            yy_current_buffer =",
  482.   "                yy_create_buffer( yyin, YY_BUF_SIZE );",
  483.   "",
  484.   "        yy_load_buffer_state();",
  485.   "        }",
  486.   "",
  487.   "    while ( 1 )        /* loops until end-of-file is reached */",
  488.   "        {",
  489.   "%% yymore()-related code goes here",
  490.   "        yy_cp = yy_c_buf_p;",
  491.   "",
  492.   "        /* Support of yytext. */",
  493.   "        *yy_cp = yy_hold_char;",
  494.   "",
  495.   "        /* yy_bp points to the position in yy_ch_buf of the start of",
  496.   "         * the current run.",
  497.   "         */",
  498.   "        yy_bp = yy_cp;",
  499.   "",
  500.   "%% code to set up and find next match goes here",
  501.   "",
  502.   "yy_find_action:",
  503.   "%% code to find the action number goes here",
  504.   "",
  505.   "        YY_DO_BEFORE_ACTION;",
  506.   "",
  507.   "%% code for yylineno update goes here",
  508.   "",
  509.   "do_action:    /* This label is used only to access EOF actions. */",
  510.   "",
  511.   "%% debug code goes here",
  512.   "",
  513.   "        switch ( yy_act )",
  514.   "    { /* beginning of action switch */",
  515.   "%% actions go here",
  516.   "",
  517.   "    case YY_END_OF_BUFFER:",
  518.   "        {",
  519.   "        /* Amount of text matched not including the EOB char. */",
  520.   "        int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;",
  521.   "",
  522.   "        /* Undo the effects of YY_DO_BEFORE_ACTION. */",
  523.   "        *yy_cp = yy_hold_char;",
  524.   "",
  525.   "        if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )",
  526.   "            {",
  527.   "            /* We're scanning a new file or input source.  It's",
  528.   "             * possible that this happened because the user",
  529.   "             * just pointed yyin at a new source and called",
  530.   "             * yylex().  If so, then we have to assure",
  531.   "             * consistency between yy_current_buffer and our",
  532.   "             * globals.  Here is the right place to do so, because",
  533.   "             * this is the first action (other than possibly a",
  534.   "             * back-up) that will match for the new input source.",
  535.   "             */",
  536.   "            yy_n_chars = yy_current_buffer->yy_n_chars;",
  537.   "            yy_current_buffer->yy_input_file = yyin;",
  538.   "            yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;",
  539.   "            }",
  540.   "",
  541.   "        /* Note that here we test for yy_c_buf_p \"<=\" to the position",
  542.   "         * of the first EOB in the buffer, since yy_c_buf_p will",
  543.   "         * already have been incremented past the NUL character",
  544.   "         * (since all states make transitions on EOB to the",
  545.   "         * end-of-buffer state).  Contrast this with the test",
  546.   "         * in input().",
  547.   "         */",
  548.   "        if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )",
  549.   "            { /* This was really a NUL. */",
  550.   "            yy_state_type yy_next_state;",
  551.   "",
  552.   "            yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;",
  553.   "",
  554.   "            yy_current_state = yy_get_previous_state();",
  555.   "",
  556.   "            /* Okay, we're now positioned to make the NUL",
  557.   "             * transition.  We couldn't have",
  558.   "             * yy_get_previous_state() go ahead and do it",
  559.   "             * for us because it doesn't know how to deal",
  560.   "             * with the possibility of jamming (and we don't",
  561.   "             * want to build jamming into it because then it",
  562.   "             * will run more slowly).",
  563.   "             */",
  564.   "",
  565.   "            yy_next_state = yy_try_NUL_trans( yy_current_state );",
  566.   "",
  567.   "            yy_bp = yytext_ptr + YY_MORE_ADJ;",
  568.   "",
  569.   "            if ( yy_next_state )",
  570.   "                {",
  571.   "                /* Consume the NUL. */",
  572.   "                yy_cp = ++yy_c_buf_p;",
  573.   "                yy_current_state = yy_next_state;",
  574.   "                goto yy_match;",
  575.   "                }",
  576.   "",
  577.   "            else",
  578.   "                {",
  579.   "%% code to do back-up for compressed tables and set up yy_cp goes here",
  580.   "                goto yy_find_action;",
  581.   "                }",
  582.   "            }",
  583.   "",
  584.   "        else switch ( yy_get_next_buffer() )",
  585.   "            {",
  586.   "            case EOB_ACT_END_OF_FILE:",
  587.   "                {",
  588.   "                yy_did_buffer_switch_on_eof = 0;",
  589.   "",
  590.   "                if ( yywrap() )",
  591.   "                    {",
  592.   "                    /* Note: because we've taken care in",
  593.   "                     * yy_get_next_buffer() to have set up",
  594.   "                     * yytext, we can now set up",
  595.   "                     * yy_c_buf_p so that if some total",
  596.   "                     * hoser (like flex itself) wants to",
  597.   "                     * call the scanner after we return the",
  598.   "                     * YY_NULL, it'll still work - another",
  599.   "                     * YY_NULL will get returned.",
  600.   "                     */",
  601.   "                    yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;",
  602.   "",
  603.   "                    yy_act = YY_STATE_EOF(YY_START);",
  604.   "                    goto do_action;",
  605.   "                    }",
  606.   "",
  607.   "                else",
  608.   "                    {",
  609.   "                    if ( ! yy_did_buffer_switch_on_eof )",
  610.   "                        YY_NEW_FILE;",
  611.   "                    }",
  612.   "                break;",
  613.   "                }",
  614.   "",
  615.   "            case EOB_ACT_CONTINUE_SCAN:",
  616.   "                yy_c_buf_p =",
  617.   "                    yytext_ptr + yy_amount_of_matched_text;",
  618.   "",
  619.   "                yy_current_state = yy_get_previous_state();",
  620.   "",
  621.   "                yy_cp = yy_c_buf_p;",
  622.   "                yy_bp = yytext_ptr + YY_MORE_ADJ;",
  623.   "                goto yy_match;",
  624.   "",
  625.   "            case EOB_ACT_LAST_MATCH:",
  626.   "                yy_c_buf_p =",
  627.   "                &yy_current_buffer->yy_ch_buf[yy_n_chars];",
  628.   "",
  629.   "                yy_current_state = yy_get_previous_state();",
  630.   "",
  631.   "                yy_cp = yy_c_buf_p;",
  632.   "                yy_bp = yytext_ptr + YY_MORE_ADJ;",
  633.   "                goto yy_find_action;",
  634.   "            }",
  635.   "        break;",
  636.   "        }",
  637.   "",
  638.   "    default:",
  639.   "        YY_FATAL_ERROR(",
  640.   "            \"fatal flex scanner internal error--no action found\" );",
  641.   "    } /* end of action switch */",
  642.   "        } /* end of scanning one token */",
  643.   "    } /* end of yylex */",
  644.   "",
  645.   "%+",
  646.   "yyFlexLexer::yyFlexLexer( istream* arg_yyin, ostream* arg_yyout )",
  647.   "    {",
  648.   "    yyin = arg_yyin;",
  649.   "    yyout = arg_yyout;",
  650.   "    yy_c_buf_p = 0;",
  651.   "    yy_init = 1;",
  652.   "    yy_start = 0;",
  653.   "    yy_flex_debug = 0;",
  654.   "    yylineno = 1;    // this will only get updated if %option yylineno",
  655.   "",
  656.   "    yy_did_buffer_switch_on_eof = 0;",
  657.   "",
  658.   "    yy_looking_for_trail_begin = 0;",
  659.   "    yy_more_flag = 0;",
  660.   "    yy_more_len = 0;",
  661.   "",
  662.   "    yy_start_stack_ptr = yy_start_stack_depth = 0;",
  663.   "    yy_start_stack = 0;",
  664.   "",
  665.   "    yy_current_buffer = 0;",
  666.   "",
  667.   "#ifdef YY_USES_REJECT",
  668.   "    yy_state_buf = new yy_state_type[YY_BUF_SIZE + 2];",
  669.   "#else",
  670.   "    yy_state_buf = 0;",
  671.   "#endif",
  672.   "    }",
  673.   "",
  674.   "yyFlexLexer::~yyFlexLexer()",
  675.   "    {",
  676.   "    delete yy_state_buf;",
  677.   "    yy_delete_buffer( yy_current_buffer );",
  678.   "    }",
  679.   "",
  680.   "void yyFlexLexer::switch_streams( istream* new_in, ostream* new_out )",
  681.   "    {",
  682.   "    if ( new_in )",
  683.   "        {",
  684.   "        yy_delete_buffer( yy_current_buffer );",
  685.   "        yy_switch_to_buffer( yy_create_buffer( new_in, YY_BUF_SIZE ) );",
  686.   "        }",
  687.   "",
  688.   "    if ( new_out )",
  689.   "        yyout = new_out;",
  690.   "    }",
  691.   "",
  692.   "#ifdef YY_INTERACTIVE",
  693.   "int yyFlexLexer::LexerInput( char* buf, int /* max_size */ )",
  694.   "#else",
  695.   "int yyFlexLexer::LexerInput( char* buf, int max_size )",
  696.   "#endif",
  697.   "    {",
  698.   "    if ( yyin->eof() || yyin->fail() )",
  699.   "        return 0;",
  700.   "",
  701.   "#ifdef YY_INTERACTIVE",
  702.   "    yyin->get( buf[0] );",
  703.   "",
  704.   "    if ( yyin->eof() )",
  705.   "        return 0;",
  706.   "",
  707.   "    if ( yyin->bad() )",
  708.   "        return -1;",
  709.   "",
  710.   "    return 1;",
  711.   "",
  712.   "#else",
  713.   "    (void) yyin->read( buf, max_size );",
  714.   "",
  715.   "    if ( yyin->bad() )",
  716.   "        return -1;",
  717.   "    else",
  718.   "        return yyin->gcount();",
  719.   "#endif",
  720.   "    }",
  721.   "",
  722.   "void yyFlexLexer::LexerOutput( const char* buf, int size )",
  723.   "    {",
  724.   "    (void) yyout->write( buf, size );",
  725.   "    }",
  726.   "%*",
  727.   "",
  728.   "/* yy_get_next_buffer - try to read in a new buffer",
  729.   " *",
  730.   " * Returns a code representing an action:",
  731.   " *    EOB_ACT_LAST_MATCH -",
  732.   " *    EOB_ACT_CONTINUE_SCAN - continue scanning from current position",
  733.   " *    EOB_ACT_END_OF_FILE - end of file",
  734.   " */",
  735.   "",
  736.   "%-",
  737.   "static int yy_get_next_buffer()",
  738.   "%+",
  739.   "int yyFlexLexer::yy_get_next_buffer()",
  740.   "%*",
  741.   "    {",
  742.   "    register char *dest = yy_current_buffer->yy_ch_buf;",
  743.   "    register char *source = yytext_ptr;",
  744.   "    register int number_to_move, i;",
  745.   "    int ret_val;",
  746.   "",
  747.   "    if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )",
  748.   "        YY_FATAL_ERROR(",
  749.   "        \"fatal flex scanner internal error--end of buffer missed\" );",
  750.   "",
  751.   "    if ( yy_current_buffer->yy_fill_buffer == 0 )",
  752.   "        { /* Don't try to fill the buffer, so this is an EOF. */",
  753.   "        if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )",
  754.   "            {",
  755.   "            /* We matched a singled characater, the EOB, so",
  756.   "             * treat this as a final EOF.",
  757.   "             */",
  758.   "            return EOB_ACT_END_OF_FILE;",
  759.   "            }",
  760.   "",
  761.   "        else",
  762.   "            {",
  763.   "            /* We matched some text prior to the EOB, first",
  764.   "             * process it.",
  765.   "             */",
  766.   "            return EOB_ACT_LAST_MATCH;",
  767.   "            }",
  768.   "        }",
  769.   "",
  770.   "    /* Try to read more data. */",
  771.   "",
  772.   "    /* First move last chars to start of buffer. */",
  773.   "    number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;",
  774.   "",
  775.   "    for ( i = 0; i < number_to_move; ++i )",
  776.   "        *(dest++) = *(source++);",
  777.   "",
  778.   "    if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )",
  779.   "        /* don't do the read, it's not guaranteed to return an EOF,",
  780.   "         * just force an EOF",
  781.   "         */",
  782.   "        yy_n_chars = 0;",
  783.   "",
  784.   "    else",
  785.   "        {",
  786.   "        int num_to_read =",
  787.   "            yy_current_buffer->yy_buf_size - number_to_move - 1;",
  788.   "",
  789.   "        while ( num_to_read <= 0 )",
  790.   "            { /* Not enough room in the buffer - grow it. */",
  791.   "#ifdef YY_USES_REJECT",
  792.   "            YY_FATAL_ERROR(",
  793.   "\"input buffer overflow, can't enlarge buffer because scanner uses REJECT\" );",
  794.   "#else",
  795.   "",
  796.   "            /* just a shorter name for the current buffer */",
  797.   "            YY_BUFFER_STATE b = yy_current_buffer;",
  798.   "",
  799.   "            int yy_c_buf_p_offset =",
  800.   "                (int) (yy_c_buf_p - b->yy_ch_buf);",
  801.   "",
  802.   "            if ( b->yy_is_our_buffer )",
  803.   "                {",
  804.   "                int new_size = b->yy_buf_size * 2;",
  805.   "",
  806.   "                if ( new_size <= 0 )",
  807.   "                    b->yy_buf_size += b->yy_buf_size / 8;",
  808.   "                else",
  809.   "                    b->yy_buf_size *= 2;",
  810.   "",
  811.   "                b->yy_ch_buf = (char *)",
  812.   "                    /* Include room in for 2 EOB chars. */",
  813.   "                    yy_flex_realloc( (void *) b->yy_ch_buf,",
  814.   "                             b->yy_buf_size + 2 );",
  815.   "                }",
  816.   "            else",
  817.   "                /* Can't grow it, we don't own it. */",
  818.   "                b->yy_ch_buf = 0;",
  819.   "",
  820.   "            if ( ! b->yy_ch_buf )",
  821.   "                YY_FATAL_ERROR(",
  822.   "                \"fatal error - scanner input buffer overflow\" );",
  823.   "",
  824.   "            yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];",
  825.   "",
  826.   "            num_to_read = yy_current_buffer->yy_buf_size -",
  827.   "                        number_to_move - 1;",
  828.   "#endif",
  829.   "            }",
  830.   "",
  831.   "        if ( num_to_read > YY_READ_BUF_SIZE )",
  832.   "            num_to_read = YY_READ_BUF_SIZE;",
  833.   "",
  834.   "        /* Read in more data. */",
  835.   "        YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),",
  836.   "            yy_n_chars, num_to_read );",
  837.   "        }",
  838.   "",
  839.   "    if ( yy_n_chars == 0 )",
  840.   "        {",
  841.   "        if ( number_to_move == YY_MORE_ADJ )",
  842.   "            {",
  843.   "            ret_val = EOB_ACT_END_OF_FILE;",
  844.   "            yyrestart( yyin );",
  845.   "            }",
  846.   "",
  847.   "        else",
  848.   "            {",
  849.   "            ret_val = EOB_ACT_LAST_MATCH;",
  850.   "            yy_current_buffer->yy_buffer_status =",
  851.   "                YY_BUFFER_EOF_PENDING;",
  852.   "            }",
  853.   "        }",
  854.   "",
  855.   "    else",
  856.   "        ret_val = EOB_ACT_CONTINUE_SCAN;",
  857.   "",
  858.   "    yy_n_chars += number_to_move;",
  859.   "    yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;",
  860.   "    yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;",
  861.   "",
  862.   "    yytext_ptr = &yy_current_buffer->yy_ch_buf[0];",
  863.   "",
  864.   "    return ret_val;",
  865.   "    }",
  866.   "",
  867.   "",
  868.   "/* yy_get_previous_state - get the state just before the EOB char was reached */",
  869.   "",
  870.   "%-",
  871.   "static yy_state_type yy_get_previous_state()",
  872.   "%+",
  873.   "yy_state_type yyFlexLexer::yy_get_previous_state()",
  874.   "%*",
  875.   "    {",
  876.   "    register yy_state_type yy_current_state;",
  877.   "    register char *yy_cp;",
  878.   "",
  879.   "%% code to get the start state into yy_current_state goes here",
  880.   "",
  881.   "    for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )",
  882.   "        {",
  883.   "%% code to find the next state goes here",
  884.   "        }",
  885.   "",
  886.   "    return yy_current_state;",
  887.   "    }",
  888.   "",
  889.   "",
  890.   "/* yy_try_NUL_trans - try to make a transition on the NUL character",
  891.   " *",
  892.   " * synopsis",
  893.   " *    next_state = yy_try_NUL_trans( current_state );",
  894.   " */",
  895.   "",
  896.   "%-",
  897.   "#ifdef YY_USE_PROTOS",
  898.   "static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )",
  899.   "#else",
  900.   "static yy_state_type yy_try_NUL_trans( yy_current_state )",
  901.   "yy_state_type yy_current_state;",
  902.   "#endif",
  903.   "%+",
  904.   "yy_state_type yyFlexLexer::yy_try_NUL_trans( yy_state_type yy_current_state )",
  905.   "%*",
  906.   "    {",
  907.   "    register int yy_is_jam;",
  908.   "%% code to find the next state, and perhaps do backing up, goes here",
  909.   "",
  910.   "    return yy_is_jam ? 0 : yy_current_state;",
  911.   "    }",
  912.   "",
  913.   "",
  914.   "%-",
  915.   "#ifdef YY_USE_PROTOS",
  916.   "static void yyunput( int c, register char *yy_bp )",
  917.   "#else",
  918.   "static void yyunput( c, yy_bp )",
  919.   "int c;",
  920.   "register char *yy_bp;",
  921.   "#endif",
  922.   "%+",
  923.   "void yyFlexLexer::yyunput( int c, register char* yy_bp )",
  924.   "%*",
  925.   "    {",
  926.   "    register char *yy_cp = yy_c_buf_p;",
  927.   "",
  928.   "    /* undo effects of setting up yytext */",
  929.   "    *yy_cp = yy_hold_char;",
  930.   "",
  931.   "    if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )",
  932.   "        { /* need to shift things up to make room */",
  933.   "        /* +2 for EOB chars. */",
  934.   "        register int number_to_move = yy_n_chars + 2;",
  935.   "        register char *dest = &yy_current_buffer->yy_ch_buf[",
  936.   "                    yy_current_buffer->yy_buf_size + 2];",
  937.   "        register char *source =",
  938.   "                &yy_current_buffer->yy_ch_buf[number_to_move];",
  939.   "",
  940.   "        while ( source > yy_current_buffer->yy_ch_buf )",
  941.   "            *--dest = *--source;",
  942.   "",
  943.   "        yy_cp += (int) (dest - source);",
  944.   "        yy_bp += (int) (dest - source);",
  945.   "        yy_n_chars = yy_current_buffer->yy_buf_size;",
  946.   "",
  947.   "        if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )",
  948.   "            YY_FATAL_ERROR( \"flex scanner push-back overflow\" );",
  949.   "        }",
  950.   "",
  951.   "    *--yy_cp = (char) c;",
  952.   "",
  953.   "%% update yylineno here",
  954.   "",
  955.   "    yytext_ptr = yy_bp;",
  956.   "    yy_hold_char = *yy_cp;",
  957.   "    yy_c_buf_p = yy_cp;",
  958.   "    }",
  959.   "",
  960.   "",
  961.   "%-",
  962.   "#ifdef __cplusplus",
  963.   "static int yyinput()",
  964.   "#else",
  965.   "static int input()",
  966.   "#endif",
  967.   "%+",
  968.   "int yyFlexLexer::yyinput()",
  969.   "%*",
  970.   "    {",
  971.   "    int c;",
  972.   "",
  973.   "    *yy_c_buf_p = yy_hold_char;",
  974.   "",
  975.   "    if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )",
  976.   "        {",
  977.   "        /* yy_c_buf_p now points to the character we want to return.",
  978.   "         * If this occurs *before* the EOB characters, then it's a",
  979.   "         * valid NUL; if not, then we've hit the end of the buffer.",
  980.   "         */",
  981.   "        if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )",
  982.   "            /* This was really a NUL. */",
  983.   "            *yy_c_buf_p = '\\0';",
  984.   "",
  985.   "        else",
  986.   "            { /* need more input */",
  987.   "            yytext_ptr = yy_c_buf_p;",
  988.   "            ++yy_c_buf_p;",
  989.   "",
  990.   "            switch ( yy_get_next_buffer() )",
  991.   "                {",
  992.   "                case EOB_ACT_END_OF_FILE:",
  993.   "                    {",
  994.   "                    if ( yywrap() )",
  995.   "                        {",
  996.   "                        yy_c_buf_p =",
  997.   "                        yytext_ptr + YY_MORE_ADJ;",
  998.   "                        return EOF;",
  999.   "                        }",
  1000.   "",
  1001.   "                    if ( ! yy_did_buffer_switch_on_eof )",
  1002.   "                        YY_NEW_FILE;",
  1003.   "#ifdef __cplusplus",
  1004.   "                    return yyinput();",
  1005.   "#else",
  1006.   "                    return input();",
  1007.   "#endif",
  1008.   "                    }",
  1009.   "",
  1010.   "                case EOB_ACT_CONTINUE_SCAN:",
  1011.   "                    yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;",
  1012.   "                    break;",
  1013.   "",
  1014.   "                case EOB_ACT_LAST_MATCH:",
  1015.   "#ifdef __cplusplus",
  1016.   "                    YY_FATAL_ERROR(",
  1017.   "                    \"unexpected last match in yyinput()\" );",
  1018.   "#else",
  1019.   "                    YY_FATAL_ERROR(",
  1020.   "                    \"unexpected last match in input()\" );",
  1021.   "#endif",
  1022.   "                }",
  1023.   "            }",
  1024.   "        }",
  1025.   "",
  1026.   "    c = *(unsigned char *) yy_c_buf_p;    /* cast for 8-bit char's */",
  1027.   "    *yy_c_buf_p = '\\0';    /* preserve yytext */",
  1028.   "    yy_hold_char = *++yy_c_buf_p;",
  1029.   "",
  1030.   "%% update BOL and yylineno",
  1031.   "",
  1032.   "    return c;",
  1033.   "    }",
  1034.   "",
  1035.   "",
  1036.   "%-",
  1037.   "#ifdef YY_USE_PROTOS",
  1038.   "void yyrestart( FILE *input_file )",
  1039.   "#else",
  1040.   "void yyrestart( input_file )",
  1041.   "FILE *input_file;",
  1042.   "#endif",
  1043.   "%+",
  1044.   "void yyFlexLexer::yyrestart( istream* input_file )",
  1045.   "%*",
  1046.   "    {",
  1047.   "    if ( ! yy_current_buffer )",
  1048.   "        yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );",
  1049.   "",
  1050.   "    yy_init_buffer( yy_current_buffer, input_file );",
  1051.   "    yy_load_buffer_state();",
  1052.   "    }",
  1053.   "",
  1054.   "",
  1055.   "%-",
  1056.   "#ifdef YY_USE_PROTOS",
  1057.   "void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )",
  1058.   "#else",
  1059.   "void yy_switch_to_buffer( new_buffer )",
  1060.   "YY_BUFFER_STATE new_buffer;",
  1061.   "#endif",
  1062.   "%+",
  1063.   "void yyFlexLexer::yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )",
  1064.   "%*",
  1065.   "    {",
  1066.   "    if ( yy_current_buffer == new_buffer )",
  1067.   "        return;",
  1068.   "",
  1069.   "    if ( yy_current_buffer )",
  1070.   "        {",
  1071.   "        /* Flush out information for old buffer. */",
  1072.   "        *yy_c_buf_p = yy_hold_char;",
  1073.   "        yy_current_buffer->yy_buf_pos = yy_c_buf_p;",
  1074.   "        yy_current_buffer->yy_n_chars = yy_n_chars;",
  1075.   "        }",
  1076.   "",
  1077.   "    yy_current_buffer = new_buffer;",
  1078.   "    yy_load_buffer_state();",
  1079.   "",
  1080.   "    /* We don't actually know whether we did this switch during",
  1081.   "     * EOF (yywrap()) processing, but the only time this flag",
  1082.   "     * is looked at is after yywrap() is called, so it's safe",
  1083.   "     * to go ahead and always set it.",
  1084.   "     */",
  1085.   "    yy_did_buffer_switch_on_eof = 1;",
  1086.   "    }",
  1087.   "",
  1088.   "",
  1089.   "%-",
  1090.   "#ifdef YY_USE_PROTOS",
  1091.   "void yy_load_buffer_state( void )",
  1092.   "#else",
  1093.   "void yy_load_buffer_state()",
  1094.   "#endif",
  1095.   "%+",
  1096.   "void yyFlexLexer::yy_load_buffer_state()",
  1097.   "%*",
  1098.   "    {",
  1099.   "    yy_n_chars = yy_current_buffer->yy_n_chars;",
  1100.   "    yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;",
  1101.   "    yyin = yy_current_buffer->yy_input_file;",
  1102.   "    yy_hold_char = *yy_c_buf_p;",
  1103.   "    }",
  1104.   "",
  1105.   "",
  1106.   "%-",
  1107.   "#ifdef YY_USE_PROTOS",
  1108.   "YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )",
  1109.   "#else",
  1110.   "YY_BUFFER_STATE yy_create_buffer( file, size )",
  1111.   "FILE *file;",
  1112.   "int size;",
  1113.   "#endif",
  1114.   "%+",
  1115.   "YY_BUFFER_STATE yyFlexLexer::yy_create_buffer( istream* file, int size )",
  1116.   "%*",
  1117.   "    {",
  1118.   "    YY_BUFFER_STATE b;",
  1119.   "",
  1120.   "    b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );",
  1121.   "    if ( ! b )",
  1122.   "        YY_FATAL_ERROR( \"out of dynamic memory in yy_create_buffer()\" );",
  1123.   "",
  1124.   "    b->yy_buf_size = size;",
  1125.   "",
  1126.   "    /* yy_ch_buf has to be 2 characters longer than the size given because",
  1127.   "     * we need to put in 2 end-of-buffer characters.",
  1128.   "     */",
  1129.   "    b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );",
  1130.   "    if ( ! b->yy_ch_buf )",
  1131.   "        YY_FATAL_ERROR( \"out of dynamic memory in yy_create_buffer()\" );",
  1132.   "",
  1133.   "    b->yy_is_our_buffer = 1;",
  1134.   "",
  1135.   "    yy_init_buffer( b, file );",
  1136.   "",
  1137.   "    return b;",
  1138.   "    }",
  1139.   "",
  1140.   "",
  1141.   "%-",
  1142.   "#ifdef YY_USE_PROTOS",
  1143.   "void yy_delete_buffer( YY_BUFFER_STATE b )",
  1144.   "#else",
  1145.   "void yy_delete_buffer( b )",
  1146.   "YY_BUFFER_STATE b;",
  1147.   "#endif",
  1148.   "%+",
  1149.   "void yyFlexLexer::yy_delete_buffer( YY_BUFFER_STATE b )",
  1150.   "%*",
  1151.   "    {",
  1152.   "    if ( b == yy_current_buffer )",
  1153.   "        yy_current_buffer = (YY_BUFFER_STATE) 0;",
  1154.   "",
  1155.   "    if ( b->yy_is_our_buffer )",
  1156.   "        yy_flex_free( (void *) b->yy_ch_buf );",
  1157.   "",
  1158.   "    yy_flex_free( (void *) b );",
  1159.   "    }",
  1160.   "",
  1161.   "",
  1162.   "%-",
  1163.   "#ifndef YY_ALWAYS_INTERACTIVE",
  1164.   "#ifndef YY_NEVER_INTERACTIVE",
  1165.   "extern int isatty YY_PROTO(( int ));",
  1166.   "#endif",
  1167.   "#endif",
  1168.   "",
  1169.   "#ifdef YY_USE_PROTOS",
  1170.   "void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )",
  1171.   "#else",
  1172.   "void yy_init_buffer( b, file )",
  1173.   "YY_BUFFER_STATE b;",
  1174.   "FILE *file;",
  1175.   "#endif",
  1176.   "",
  1177.   "%+",
  1178.   "extern \"C\" int isatty YY_PROTO(( int ));",
  1179.   "void yyFlexLexer::yy_init_buffer( YY_BUFFER_STATE b, istream* file )",
  1180.   "%*",
  1181.   "",
  1182.   "    {",
  1183.   "    yy_flush_buffer( b );",
  1184.   "",
  1185.   "    b->yy_input_file = file;",
  1186.   "    b->yy_fill_buffer = 1;",
  1187.   "",
  1188.   "%-",
  1189.   "#if YY_ALWAYS_INTERACTIVE",
  1190.   "    b->yy_is_interactive = 1;",
  1191.   "#else",
  1192.   "#if YY_NEVER_INTERACTIVE",
  1193.   "    b->yy_is_interactive = 0;",
  1194.   "#else",
  1195.   "    b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;",
  1196.   "#endif",
  1197.   "#endif",
  1198.   "%+",
  1199.   "    b->yy_is_interactive = 0;",
  1200.   "%*",
  1201.   "    }",
  1202.   "",
  1203.   "",
  1204.   "%-",
  1205.   "#ifdef YY_USE_PROTOS",
  1206.   "void yy_flush_buffer( YY_BUFFER_STATE b )",
  1207.   "#else",
  1208.   "void yy_flush_buffer( b )",
  1209.   "YY_BUFFER_STATE b;",
  1210.   "#endif",
  1211.   "",
  1212.   "%+",
  1213.   "void yyFlexLexer::yy_flush_buffer( YY_BUFFER_STATE b )",
  1214.   "%*",
  1215.   "    {",
  1216.   "    b->yy_n_chars = 0;",
  1217.   "",
  1218.   "    /* We always need two end-of-buffer characters.  The first causes",
  1219.   "     * a transition to the end-of-buffer state.  The second causes",
  1220.   "     * a jam in that state.",
  1221.   "     */",
  1222.   "    b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;",
  1223.   "    b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;",
  1224.   "",
  1225.   "    b->yy_buf_pos = &b->yy_ch_buf[0];",
  1226.   "",
  1227.   "    b->yy_at_bol = 1;",
  1228.   "    b->yy_buffer_status = YY_BUFFER_NEW;",
  1229.   "",
  1230.   "    if ( b == yy_current_buffer )",
  1231.   "        yy_load_buffer_state();",
  1232.   "    }",
  1233.   "%*",
  1234.   "",
  1235.   "",
  1236.   "#ifndef YY_NO_SCAN_BUFFER",
  1237.   "%-",
  1238.   "#ifdef YY_USE_PROTOS",
  1239.   "YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )",
  1240.   "#else",
  1241.   "YY_BUFFER_STATE yy_scan_buffer( base, size )",
  1242.   "char *base;",
  1243.   "yy_size_t size;",
  1244.   "#endif",
  1245.   "    {",
  1246.   "    YY_BUFFER_STATE b;",
  1247.   "",
  1248.   "    if ( size < 2 ||",
  1249.   "         base[size-2] != YY_END_OF_BUFFER_CHAR ||",
  1250.   "         base[size-1] != YY_END_OF_BUFFER_CHAR )",
  1251.   "        /* They forgot to leave room for the EOB's. */",
  1252.   "        return 0;",
  1253.   "",
  1254.   "    b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );",
  1255.   "    if ( ! b )",
  1256.   "        YY_FATAL_ERROR( \"out of dynamic memory in yy_scan_buffer()\" );",
  1257.   "",
  1258.   "    b->yy_buf_size = size - 2;    /* \"- 2\" to take care of EOB's */",
  1259.   "    b->yy_buf_pos = b->yy_ch_buf = base;",
  1260.   "    b->yy_is_our_buffer = 0;",
  1261.   "    b->yy_input_file = 0;",
  1262.   "    b->yy_n_chars = b->yy_buf_size;",
  1263.   "    b->yy_is_interactive = 0;",
  1264.   "    b->yy_at_bol = 1;",
  1265.   "    b->yy_fill_buffer = 0;",
  1266.   "    b->yy_buffer_status = YY_BUFFER_NEW;",
  1267.   "",
  1268.   "    yy_switch_to_buffer( b );",
  1269.   "",
  1270.   "    return b;",
  1271.   "    }",
  1272.   "%*",
  1273.   "#endif",
  1274.   "",
  1275.   "",
  1276.   "#ifndef YY_NO_SCAN_STRING",
  1277.   "%-",
  1278.   "#ifdef YY_USE_PROTOS",
  1279.   "YY_BUFFER_STATE yy_scan_string( const char *str )",
  1280.   "#else",
  1281.   "YY_BUFFER_STATE yy_scan_string( str )",
  1282.   "const char *str;",
  1283.   "#endif",
  1284.   "    {",
  1285.   "    int len;",
  1286.   "    for ( len = 0; str[len]; ++len )",
  1287.   "        ;",
  1288.   "",
  1289.   "    return yy_scan_bytes( str, len );",
  1290.   "    }",
  1291.   "%*",
  1292.   "#endif",
  1293.   "",
  1294.   "",
  1295.   "#ifndef YY_NO_SCAN_BYTES",
  1296.   "%-",
  1297.   "#ifdef YY_USE_PROTOS",
  1298.   "YY_BUFFER_STATE yy_scan_bytes( const char *bytes, int len )",
  1299.   "#else",
  1300.   "YY_BUFFER_STATE yy_scan_bytes( bytes, len )",
  1301.   "const char *bytes;",
  1302.   "int len;",
  1303.   "#endif",
  1304.   "    {",
  1305.   "    YY_BUFFER_STATE b;",
  1306.   "    char *buf;",
  1307.   "    yy_size_t n;",
  1308.   "    int i;",
  1309.   "",
  1310.   "    /* Get memory for full buffer, including space for trailing EOB's. */",
  1311.   "    n = len + 2;",
  1312.   "    buf = (char *) yy_flex_alloc( n );",
  1313.   "    if ( ! buf )",
  1314.   "        YY_FATAL_ERROR( \"out of dynamic memory in yy_scan_bytes()\" );",
  1315.   "",
  1316.   "    for ( i = 0; i < len; ++i )",
  1317.   "        buf[i] = bytes[i];",
  1318.   "",
  1319.   "    buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;",
  1320.   "",
  1321.   "    b = yy_scan_buffer( buf, n );",
  1322.   "    if ( ! b )",
  1323.   "        YY_FATAL_ERROR( \"bad buffer in yy_scan_bytes()\" );",
  1324.   "",
  1325.   "    /* It's okay to grow etc. this buffer, and we should throw it",
  1326.   "     * away when we're done.",
  1327.   "     */",
  1328.   "    b->yy_is_our_buffer = 1;",
  1329.   "",
  1330.   "    return b;",
  1331.   "    }",
  1332.   "%*",
  1333.   "#endif",
  1334.   "",
  1335.   "",
  1336.   "#ifndef YY_NO_PUSH_STATE",
  1337.   "%-",
  1338.   "#ifdef YY_USE_PROTOS",
  1339.   "static void yy_push_state( int new_state )",
  1340.   "#else",
  1341.   "static void yy_push_state( new_state )",
  1342.   "int new_state;",
  1343.   "#endif",
  1344.   "%+",
  1345.   "void yyFlexLexer::yy_push_state( int new_state )",
  1346.   "%*",
  1347.   "    {",
  1348.   "    if ( yy_start_stack_ptr >= yy_start_stack_depth )",
  1349.   "        {",
  1350.   "        yy_size_t new_size;",
  1351.   "",
  1352.   "        yy_start_stack_depth += YY_START_STACK_INCR;",
  1353.   "        new_size = yy_start_stack_depth * sizeof( int );",
  1354.   "",
  1355.   "        if ( ! yy_start_stack )",
  1356.   "            yy_start_stack = (int *) yy_flex_alloc( new_size );",
  1357.   "",
  1358.   "        else",
  1359.   "            yy_start_stack = (int *) yy_flex_realloc(",
  1360.   "                    (void *) yy_start_stack, new_size );",
  1361.   "",
  1362.   "        if ( ! yy_start_stack )",
  1363.   "            YY_FATAL_ERROR(",
  1364.   "            \"out of memory expanding start-condition stack\" );",
  1365.   "        }",
  1366.   "",
  1367.   "    yy_start_stack[yy_start_stack_ptr++] = YY_START;",
  1368.   "",
  1369.   "    BEGIN(new_state);",
  1370.   "    }",
  1371.   "#endif",
  1372.   "",
  1373.   "",
  1374.   "#ifndef YY_NO_POP_STATE",
  1375.   "%-",
  1376.   "static void yy_pop_state()",
  1377.   "%+",
  1378.   "void yyFlexLexer::yy_pop_state()",
  1379.   "%*",
  1380.   "    {",
  1381.   "    if ( --yy_start_stack_ptr < 0 )",
  1382.   "        YY_FATAL_ERROR( \"start-condition stack underflow\" );",
  1383.   "",
  1384.   "    BEGIN(yy_start_stack[yy_start_stack_ptr]);",
  1385.   "    }",
  1386.   "#endif",
  1387.   "",
  1388.   "",
  1389.   "#ifndef YY_NO_TOP_STATE",
  1390.   "%-",
  1391.   "static int yy_top_state()",
  1392.   "%+",
  1393.   "int yyFlexLexer::yy_top_state()",
  1394.   "%*",
  1395.   "    {",
  1396.   "    return yy_start_stack[yy_start_stack_ptr - 1];",
  1397.   "    }",
  1398.   "#endif",
  1399.   "",
  1400.   "#ifndef YY_EXIT_FAILURE",
  1401.   "#define YY_EXIT_FAILURE 2",
  1402.   "#endif",
  1403.   "",
  1404.   "%-",
  1405.   "#ifdef YY_USE_PROTOS",
  1406.   "static void yy_fatal_error( const char msg[] )",
  1407.   "#else",
  1408.   "static void yy_fatal_error( msg )",
  1409.   "char msg[];",
  1410.   "#endif",
  1411.   "    {",
  1412.   "    (void) fprintf( stderr, \"%s\\n\", msg );",
  1413.   "    exit( YY_EXIT_FAILURE );",
  1414.   "    }",
  1415.   "",
  1416.   "%+",
  1417.   "",
  1418.   "void yyFlexLexer::LexerError( const char msg[] )",
  1419.   "    {",
  1420.   "    cerr << msg << '\\n';",
  1421.   "    exit( YY_EXIT_FAILURE );",
  1422.   "    }",
  1423.   "%*",
  1424.   "",
  1425.   "",
  1426.   "/* Redefine yyless() so it works in section 3 code. */",
  1427.   "",
  1428.   "#undef yyless",
  1429.   "#define yyless(n) \\",
  1430.   "    do \\",
  1431.   "        { \\",
  1432.   "        /* Undo effects of setting up yytext. */ \\",
  1433.   "        yytext[yyleng] = yy_hold_char; \\",
  1434.   "        yy_c_buf_p = yytext + n - YY_MORE_ADJ; \\",
  1435.   "        yy_hold_char = *yy_c_buf_p; \\",
  1436.   "        *yy_c_buf_p = '\\0'; \\",
  1437.   "        yyleng = n; \\",
  1438.   "        } \\",
  1439.   "    while ( 0 )",
  1440.   "",
  1441.   "",
  1442.   "/* Internal utility routines. */",
  1443.   "",
  1444.   "#ifndef yytext_ptr",
  1445.   "#ifdef YY_USE_PROTOS",
  1446.   "static void yy_flex_strncpy( char *s1, const char *s2, int n )",
  1447.   "#else",
  1448.   "static void yy_flex_strncpy( s1, s2, n )",
  1449.   "char *s1;",
  1450.   "const char *s2;",
  1451.   "int n;",
  1452.   "#endif",
  1453.   "    {",
  1454.   "    register int i;",
  1455.   "    for ( i = 0; i < n; ++i )",
  1456.   "        s1[i] = s2[i];",
  1457.   "    }",
  1458.   "#endif",
  1459.   "",
  1460.   "",
  1461.   "#ifdef YY_USE_PROTOS",
  1462.   "static void *yy_flex_alloc( yy_size_t size )",
  1463.   "#else",
  1464.   "static void *yy_flex_alloc( size )",
  1465.   "yy_size_t size;",
  1466.   "#endif",
  1467.   "    {",
  1468.   "    return (void *) malloc( size );",
  1469.   "    }",
  1470.   "",
  1471.   "#ifdef YY_USE_PROTOS",
  1472.   "static void *yy_flex_realloc( void *ptr, yy_size_t size )",
  1473.   "#else",
  1474.   "static void *yy_flex_realloc( ptr, size )",
  1475.   "void *ptr;",
  1476.   "yy_size_t size;",
  1477.   "#endif",
  1478.   "    {",
  1479.   "    return (void *) realloc( ptr, size );",
  1480.   "    }",
  1481.   "",
  1482.   "#ifdef YY_USE_PROTOS",
  1483.   "static void yy_flex_free( void *ptr )",
  1484.   "#else",
  1485.   "static void yy_flex_free( ptr )",
  1486.   "void *ptr;",
  1487.   "#endif",
  1488.   "    {",
  1489.   "    free( ptr );",
  1490.   "    }",
  1491.   "",
  1492.   "#if YY_MAIN",
  1493.   "int main()",
  1494.   "    {",
  1495.   "    yylex();",
  1496.   "    return 0;",
  1497.   "    }",
  1498.   "#endif",
  1499.   0
  1500. };
  1501.